f2dfc3ac55f8070c87f2934bc1bffd4739c40732,src/core/org/apache/jmeter/report/core/Sample.java,Sample,getTimestamp,#,318

Before Change


     * @return the time stamp
     */
    public long getTimestamp() {
        return getLong(metadata.indexOf(CSVSaveService.TIME_STAMP));
    }

    /**

After Change


     * @return the time stamp
     */
    public long getTimestamp() {
	return getData(long.class, CSVSaveService.TIME_STAMP);
    }

    /**